home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 March / EnterCD 03_2004.iso / Multimedia / Adobe GoLive CS / data1.cab / PF_AppDir_Mod_JScript_GlobalScripts / StyleDepth.js < prev    next >
Encoding:
Text File  |  2003-12-10  |  372 b   |  10 lines

  1. function CSSetStyleDepth(s,depth) {
  2.     if (CSIsW3CDOM)document.getElementById(s).style.zIndex=depth;
  3.     else if (IsIE())CSIEStyl(s).zIndex=depth;
  4.     else CSNSStyl(s).zIndex=depth;
  5. }
  6. function CSGetStyleDepth(s) {
  7.     if (CSIsW3CDOM){CSIDOM();return document.getElementById(s).style.zIndex;}
  8.     else if (IsIE())return (CSIEStyl(s).zIndex);
  9.     else return (CSNSStyl(s).zIndex);
  10. }